Micron Document
C.S.Burner 🪙 ━►🔥GIT Node

Node / reticulum_mirror / MeshChatX / files / docs / en / platform-guides / android-termux.md

Displaying Rendered • View rawDownload

docs/en/platform-guides/android-termux.md dev (54b0734e) Text, 1.74 KB

Android with Termux

MeshChatX runs on Android through Termux. Release wheels ship the Python backend and built web UI, so you do not need Node on the phone for a normal install.

Install from wheel

The wheel bundles server code and frontend assets.

System packages

T282828
pkg upgrade
pkg install python
pkg install rust
pkg install binutils
pkg install build-essential

│ Note: Python 3.11 or higher is required. Check with T383838python --version.

Wheel install

Download the latest wheel from the releases page, then:

T282828
pip install reticulum_meshchatx-*-py3-none-any.whl

The wheel pulls Python dependencies automatically. Building T383838cryptography can take several minutes on Android.

Run

T282828
meshchatx

(T383838meshchat is a compatibility alias for the same entry point.)

Open T383838http://localhost:8000 in the Android browser.

Install from source

Use this path for development or when no wheel fits your setup.

System packages

T282828
pkg upgrade
pkg install git
pkg install nodejs-lts
pkg install python
pkg install rust
pkg install binutils
pkg install build-essential

pnpm

T282828
corepack enable
corepack prepare pnpm@latest --activate

Clone and build

T282828
git clone https://github.com/Quad4-Software/MeshChatX.git
cd MeshChatX
pip install uv
uv sync --group dev
pnpm install
pnpm run build-frontend
uv build --wheel
pip install dist/*.whl

Run

T282828
meshchatx

(T383838meshchat is a compatibility alias for the same entry point.)

Configuration notes

│ Note: The default T383838AutoInterface may not work on your Android device. Configure another interface
│ such as T383838TCPClientInterface in the settings.

Served by rngit 1.3.7 - Generated in 0.02s